home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Scene Storm
/
Scene Storm - Volume 1.iso
/
coding
/
c
/
amiexpress
/
source
/
ae
/
code
/
ax3.00
/
str_save.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1980-01-03
|
209 b
|
15 lines
/* str_save.c */
#include "bbs.h"
char *str_save(char *str)
{
char *s;
if(!(s = malloc(strlen(str)+1))) {
ErrorLog("str_save error: str_save error");
return(NL);
}
strcpy(s,str);
return(s);
}